Hi Jerome,
These are Mach3 and Mach3 VB questions. I fixed general typos and syntax errors so it now compiles and uploaded the file.
It will be up to you to understand it and debug it. I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
Regards
TK
Group: DynoMotion |
Message: 4791 |
From: Fouijar |
Date: 5/6/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I know this is Mach3 related.
But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
I started a topic on the VB section of machsupport.
http://www.machsupport.com/forum/index.php/topic,21505.0.html
The flowchart is included in my files: ATC procedure.png
The Compare function was created to check if the current tool is the same as the requested tool or new tool.
Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
I haven't checked your work yet.
Regards,
J.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> These are Mach3 and Mach3 VB questions. I fixed general typos and syntax errors so it now compiles and uploaded the file.
> Â
> It will be up to you to understand it and debug it. I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> Â
> The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> Â
> Regards
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, May 6, 2012 9:09 AM
> Subject: [DynoMotion] ATC M6 macro under mach3
>
>
> Â
> Hi Tom, Ray,
>
> In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
>
> I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
>
> I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
>
> I don't know if I have to use an oemdro for the Getcurrentool()?
>
> So if you can explain me what's wrong I could go further.
>
> Thanks for your attention,
>
> Jerome
>
|
|
Group: DynoMotion |
Message: 4793 |
From: Fouijar |
Date: 5/6/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
while(IsMoving())
Sleep(100)
code("G00 Z-35")'Move to the safe Z position for tool change
while (IsMoving())
Should be this:
Code "G00 Z-35"
While IsMoving()
Wend
You don't need the Sleep() in the While IsMoving().
Mods are proposed by ger21 on machsupport forum.
I tried that, and your file without success.
I also tried a mix with(out) parenthesis :
IsMoving()<>(IsMoving())
code("G00 Z-35")<>Code "G00 Z-35"
Anyway I keep trying to find what's wrong.
Jerome
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I know this is Mach3 related.
> But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> I started a topic on the VB section of machsupport.
> http://www.machsupport.com/forum/index.php/topic,21505.0.html
>
> The flowchart is included in my files: ATC procedure.png
>
> The Compare function was created to check if the current tool is the same as the requested tool or new tool.
>
> Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> I haven't checked your work yet.
>
> Regards,
>
> J.
>
>
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > Â
> > These are Mach3 and Mach3 VB questions. I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > Â
> > It will be up to you to understand it and debug it. I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > Â
> > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > Â
> > Regards
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, May 6, 2012 9:09 AM
> > Subject: [DynoMotion] ATC M6 macro under mach3
> >
> >
> > Â
> > Hi Tom, Ray,
> >
> > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> >
> > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> >
> > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> >
> > I don't know if I have to use an oemdro for the Getcurrentool()?
> >
> > So if you can explain me what's wrong I could go further.
> >
> > Thanks for your attention,
> >
> > Jerome
> >
>
|
|
Group: DynoMotion |
Message: 4795 |
From: Tom Kerekes |
Date: 5/6/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
Sorry I wasn't aware of the Flowchart. You might point that out on the Mach3 foum as well so they will know what you are trying to do.
I wouldn't expect you to be able to just run it and get success. Something that complex will need to be debugged step by step.
I don't think parenthesis makes any difference in those cases.
To debug you might change the:
NewTool = GetSelectedTool() OldTool = GetCurrentTool()
to
NewTool = 5 OldTool = 3
in order to force a known case and be able to run it right from the VB editor. Use single step and verify each step does what you expect.
I think you should change the initial Compare to (because it wasn't waiting for anything):
'Air Cylinder Homing sub AirCyHome() DeactivateSignal(OUTPUT8) While (IsActive(INPUT1)) Sleep(10) Wend end sub
Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
'Carrousel air cylinder position check : Home, in Mvt and ToolChange Function ToolChangerPos() As Boolean If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position ToolChangerPos = 0 TCMove = False 'We are stopped ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then ToolChangerPos = 1 TCMove = False Else ToolChangerPos = -1 TCMove = True End If End Function
the SpindleHome function just sets an output bit. I don't understand how you expect this to home the spindle. What type of spindle do you have?
Regards
TK
Group: DynoMotion |
Message: 4799 |
From: Fouijar |
Date: 5/6/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I started debugging this evening, more to come tomorrow.
I suppressed the compare function and made a test to know if the program has to run or leave.
The air cylinder procedure was written to add a security check.
The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
Thanks for your help,
Jerome
PS: I also write on the machsupport forum, this will give more visibility and resources.
http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> Sorry I wasn't aware of the Flowchart. You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> Â
> I wouldn't expect you to be able to just run it and get success. Something that complex will need to be debugged step by step.
> Â
> I don't think parenthesis makes any difference in those cases.
> Â
> To debug you might change the:
> Â
> NewTool = GetSelectedTool()
> OldTool = GetCurrentTool()
>
> to
> Â
> NewTool = 5
> OldTool = 3
> Â
> in order to force a known case and be able to run it right from the VB editor. Use single step and verify each step does what you expect.
> Â
> I think you should change the initial Compare to (because it wasn't waiting for anything):
> Â
> 'Air Cylinder Homing
> sub AirCyHome()
> Â DeactivateSignal(OUTPUT8)
> Â While (IsActive(INPUT1))
> Â Â Sleep(10)
> Â Wend
> end sub
> Â
> Â
> Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> Â
> Â
> 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> Function ToolChangerPos() As Boolean
> Â If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> Â ToolChangerPos = 0
> Â TCMove = False 'We are stopped
> Â
> Â ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> Â Â ToolChangerPos = 1
> Â Â TCMove = False
> Â Â Else
> Â Â ToolChangerPos = -1
> Â Â TCMove = True
> Â End If
> End Function
>
> Â
> the SpindleHome function just sets an output bit. I don't understand how you expect this to home the spindle. What type of spindle do you have?
> Â
> Regards
> TK
> Â
> Â
> Â
> Â
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, May 6, 2012 1:38 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
> Â
> Hi Tom,
>
> I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
>
> while(IsMoving())
> Sleep(100)
> code("G00 Z-35")'Move to the safe Z position for tool change
> while (IsMoving())
>
> Should be this:
>
> Code "G00 Z-35"
> While IsMoving()
> Wend
>
> You don't need the Sleep() in the While IsMoving().
>
> Mods are proposed by ger21 on machsupport forum.
>
> I tried that, and your file without success.
> I also tried a mix with(out) parenthesis :
>
> IsMoving()<>(IsMoving())
> code("G00 Z-35")<>Code "G00 Z-35"
>
> Anyway I keep trying to find what's wrong.
>
> Jerome
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I know this is Mach3 related.
> > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > I started a topic on the VB section of machsupport.
> > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> >
> > The flowchart is included in my files: ATC procedure.png
> >
> > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> >
> > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > I haven't checked your work yet.
> >
> > Regards,
> >
> > J.
> >
> >
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > ÃÂ
> > > These are Mach3 and Mach3 VB questions.ÃÂ I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > ÃÂ
> > > It will be up to you to understand itÃÂ and debug it.ÃÂ I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > ÃÂ
> > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > ÃÂ
> > > Regards
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, May 6, 2012 9:09 AM
> > > Subject: [DynoMotion] ATC M6 macro under mach3
> > >
> > >
> > > ÃÂ
> > > Hi Tom, Ray,
> > >
> > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > >
> > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > >
> > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > >
> > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > >
> > > So if you can explain me what's wrong I could go further.
> > >
> > > Thanks for your attention,
> > >
> > > Jerome
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4813 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
So I call functions inside the Main Sub.
I also use MsgBox to check what's wrong.
The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
I posted My code in the txt file ATC_J_Debug.
Thanks for your attention,
Jerome
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I started debugging this evening, more to come tomorrow.
> I suppressed the compare function and made a test to know if the program has to run or leave.
> The air cylinder procedure was written to add a security check.
> The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
>
> Thanks for your help,
>
> Jerome
>
> PS: I also write on the machsupport forum, this will give more visibility and resources.
>
> http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
>
>
>
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > Â
> > Sorry I wasn't aware of the Flowchart. You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > Â
> > I wouldn't expect you to be able to just run it and get success. Something that complex will need to be debugged step by step.
> > Â
> > I don't think parenthesis makes any difference in those cases.
> > Â
> > To debug you might change the:
> > Â
> > NewTool = GetSelectedTool()
> > OldTool = GetCurrentTool()
> >
> > to
> > Â
> > NewTool = 5
> > OldTool = 3
> > Â
> > in order to force a known case and be able to run it right from the VB editor. Use single step and verify each step does what you expect.
> > Â
> > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > Â
> > 'Air Cylinder Homing
> > sub AirCyHome()
> > Â DeactivateSignal(OUTPUT8)
> > Â While (IsActive(INPUT1))
> > Â Â Sleep(10)
> > Â Wend
> > end sub
> > Â
> > Â
> > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > Â
> > Â
> > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > Function ToolChangerPos() As Boolean
> > Â If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > Â ToolChangerPos = 0
> > Â TCMove = False 'We are stopped
> > Â
> > Â ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > Â Â ToolChangerPos = 1
> > Â Â TCMove = False
> > Â Â Else
> > Â Â ToolChangerPos = -1
> > Â Â TCMove = True
> > Â End If
> > End Function
> >
> > Â
> > the SpindleHome function just sets an output bit. I don't understand how you expect this to home the spindle. What type of spindle do you have?
> > Â
> > Regards
> > TK
> > Â
> > Â
> > Â
> > Â
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, May 6, 2012 1:38 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > Â
> > Hi Tom,
> >
> > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> >
> > while(IsMoving())
> > Sleep(100)
> > code("G00 Z-35")'Move to the safe Z position for tool change
> > while (IsMoving())
> >
> > Should be this:
> >
> > Code "G00 Z-35"
> > While IsMoving()
> > Wend
> >
> > You don't need the Sleep() in the While IsMoving().
> >
> > Mods are proposed by ger21 on machsupport forum.
> >
> > I tried that, and your file without success.
> > I also tried a mix with(out) parenthesis :
> >
> > IsMoving()<>(IsMoving())
> > code("G00 Z-35")<>Code "G00 Z-35"
> >
> > Anyway I keep trying to find what's wrong.
> >
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I know this is Mach3 related.
> > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > I started a topic on the VB section of machsupport.
> > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > >
> > > The flowchart is included in my files: ATC procedure.png
> > >
> > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > >
> > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > I haven't checked your work yet.
> > >
> > > Regards,
> > >
> > > J.
> > >
> > >
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃÂ
> > > > These are Mach3 and Mach3 VB questions.ÃÂ I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > ÃÂ
> > > > It will be up to you to understand itÃÂ and debug it.ÃÂ I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > ÃÂ
> > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > ÃÂ
> > > > Regards
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃÂ
> > > > Hi Tom, Ray,
> > > >
> > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > >
> > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > >
> > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > >
> > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > >
> > > > So if you can explain me what's wrong I could go further.
> > > >
> > > > Thanks for your attention,
> > > >
> > > > Jerome
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4814 |
From: Tom Kerekes |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
activatesignal(OUTPUT1) should work. Do you have Output1 configured in Ports&Pins Ouputs and enabled?
Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
activatesignal(OUTPUT1) Sleep 1000 deactivatesignal(OUTPUT1) Sleep 1000 activatesignal(OUTPUT1) Sleep 1000 deactivatesignal(OUTPUT1)
TK
Group: DynoMotion |
Message: 4815 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
Outputs and inputs enabled.
I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
sequence. The idea is to have an output condition, or a temp.
INPUT5 is the limit switch indicating that the drawbar has released the tool.
I will test both and see.
J.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> activatesignal(OUTPUT1) should work. Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> Â
> Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> Â
> activatesignal(OUTPUT1)
> Sleep 1000
> deactivatesignal(OUTPUT1)
> Sleep 1000
> activatesignal(OUTPUT1)
> Sleep 1000
> deactivatesignal(OUTPUT1)
>
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 2:34 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
> Â
> Hi Tom,
>
> I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> So I call functions inside the Main Sub.
> I also use MsgBox to check what's wrong.
> The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
>
> The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
>
> If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
>
> I posted My code in the txt file ATC_J_Debug.
>
> Thanks for your attention,
>
> Jerome
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I started debugging this evening, more to come tomorrow.
> > I suppressed the compare function and made a test to know if the program has to run or leave.
> > The air cylinder procedure was written to add a security check.
> > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> >
> > Thanks for your help,
> >
> > Jerome
> >
> > PS: I also write on the machsupport forum, this will give more visibility and resources.
> >
> > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> >
> >
> >
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > ÃÂ
> > > Sorry I wasn't aware of the Flowchart.ÃÂ You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > ÃÂ
> > > I wouldn't expect you to be able to just run it and get success.ÃÂ Something that complex will need to be debugged step by step.
> > > ÃÂ
> > > I don't think parenthesis makes any difference in those cases.
> > > ÃÂ
> > > To debug you might change the:
> > > ÃÂ
> > > NewTool = GetSelectedTool()
> > > OldTool = GetCurrentTool()
> > >
> > > to
> > > ÃÂ
> > > NewTool = 5
> > > OldTool = 3
> > > ÃÂ
> > > in order to force a known case and be able to run it right from the VB editor.ÃÂ Use single step and verify each step does what you expect.
> > > ÃÂ
> > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > ÃÂ
> > > 'Air Cylinder Homing
> > > sub AirCyHome()
> > > ÃÂ DeactivateSignal(OUTPUT8)
> > > ÃÂ While (IsActive(INPUT1))
> > > ÃÂ ÃÂ Sleep(10)
> > > ÃÂ Wend
> > > end sub
> > > ÃÂ
> > > ÃÂ
> > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > ÃÂ
> > > ÃÂ
> > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > Function ToolChangerPos() As Boolean
> > > ÃÂ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > ÃÂ ToolChangerPos = 0
> > > ÃÂ TCMove = False 'We are stopped
> > > ÃÂ
> > > ÃÂ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > ÃÂ ÃÂ ToolChangerPos = 1
> > > ÃÂ ÃÂ TCMove = False
> > > ÃÂ ÃÂ Else
> > > ÃÂ ÃÂ ToolChangerPos = -1
> > > ÃÂ ÃÂ TCMove = True
> > > ÃÂ End If
> > > End Function
> > >
> > > ÃÂ
> > > the SpindleHome function just sets an output bit.ÃÂ I don't understand how you expect this to home the spindle.ÃÂ What type of spindle do you have?
> > > ÃÂ
> > > Regards
> > > TK
> > > ÃÂ
> > > ÃÂ
> > > ÃÂ
> > > ÃÂ
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, May 6, 2012 1:38 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > ÃÂ
> > > Hi Tom,
> > >
> > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > >
> > > while(IsMoving())
> > > Sleep(100)
> > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > while (IsMoving())
> > >
> > > Should be this:
> > >
> > > Code "G00 Z-35"
> > > While IsMoving()
> > > Wend
> > >
> > > You don't need the Sleep() in the While IsMoving().
> > >
> > > Mods are proposed by ger21 on machsupport forum.
> > >
> > > I tried that, and your file without success.
> > > I also tried a mix with(out) parenthesis :
> > >
> > > IsMoving()<>(IsMoving())
> > > code("G00 Z-35")<>Code "G00 Z-35"
> > >
> > > Anyway I keep trying to find what's wrong.
> > >
> > > Jerome
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I know this is Mach3 related.
> > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > I started a topic on the VB section of machsupport.
> > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > >
> > > > The flowchart is included in my files: ATC procedure.png
> > > >
> > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > >
> > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > I haven't checked your work yet.
> > > >
> > > > Regards,
> > > >
> > > > J.
> > > >
> > > >
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃâÃÂ
> > > > > These are Mach3 and Mach3 VB questions.ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > ÃâÃÂ
> > > > > It will be up to you to understand itÃâàand debug it.ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > ÃâÃÂ
> > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > ÃâÃÂ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃâÃÂ
> > > > > Hi Tom, Ray,
> > > > >
> > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > >
> > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > >
> > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > >
> > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > >
> > > > > So if you can explain me what's wrong I could go further.
> > > > >
> > > > > Thanks for your attention,
> > > > >
> > > > > Jerome
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4816 |
From: Tom Kerekes |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
I can't understand what you are saying, but to wait for an input I think you would do something like
while (not IsActive(INPUT5))
Sleep(100)
wend
TK
Group: DynoMotion |
Message: 4817 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
SystemWaitFor is a Bad idea...
It freezes everything or nearly.
I used OUTPUT1 and 4, the Led is working. I also found that the flow sequence isn't followed as called/written. This is clear when I receive MsgBox that are logically after the previous which hasn't showed up but after the last i.e.
I'll rewrite my M6 without subs, functions and check.
I have little experience with VB, but this is illogic* for a programming language, I already pointed this issue before and tried to use GoTo, without success. (*I think something is missing me to handle the program nicely).
I update when appropriate,
J.
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Outputs and inputs enabled.
>
> I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> sequence. The idea is to have an output condition, or a temp.
> INPUT5 is the limit switch indicating that the drawbar has released the tool.
> I will test both and see.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > Â
> > activatesignal(OUTPUT1) should work. Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > Â
> > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > Â
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> > Sleep 1000
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> >
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 2:34 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > Â
> > Hi Tom,
> >
> > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > So I call functions inside the Main Sub.
> > I also use MsgBox to check what's wrong.
> > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> >
> > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> >
> > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> >
> > I posted My code in the txt file ATC_J_Debug.
> >
> > Thanks for your attention,
> >
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I started debugging this evening, more to come tomorrow.
> > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > The air cylinder procedure was written to add a security check.
> > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > >
> > > Thanks for your help,
> > >
> > > Jerome
> > >
> > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > >
> > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > >
> > >
> > >
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃÂ
> > > > Sorry I wasn't aware of the Flowchart.ÃÂ You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > ÃÂ
> > > > I wouldn't expect you to be able to just run it and get success.ÃÂ Something that complex will need to be debugged step by step.
> > > > ÃÂ
> > > > I don't think parenthesis makes any difference in those cases.
> > > > ÃÂ
> > > > To debug you might change the:
> > > > ÃÂ
> > > > NewTool = GetSelectedTool()
> > > > OldTool = GetCurrentTool()
> > > >
> > > > to
> > > > ÃÂ
> > > > NewTool = 5
> > > > OldTool = 3
> > > > ÃÂ
> > > > in order to force a known case and be able to run it right from the VB editor.ÃÂ Use single step and verify each step does what you expect.
> > > > ÃÂ
> > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > ÃÂ
> > > > 'Air Cylinder Homing
> > > > sub AirCyHome()
> > > > ÃÂ DeactivateSignal(OUTPUT8)
> > > > ÃÂ While (IsActive(INPUT1))
> > > > ÃÂ ÃÂ Sleep(10)
> > > > ÃÂ Wend
> > > > end sub
> > > > ÃÂ
> > > > ÃÂ
> > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > ÃÂ
> > > > ÃÂ
> > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > Function ToolChangerPos() As Boolean
> > > > ÃÂ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > ÃÂ ToolChangerPos = 0
> > > > ÃÂ TCMove = False 'We are stopped
> > > > ÃÂ
> > > > ÃÂ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > ÃÂ ÃÂ ToolChangerPos = 1
> > > > ÃÂ ÃÂ TCMove = False
> > > > ÃÂ ÃÂ Else
> > > > ÃÂ ÃÂ ToolChangerPos = -1
> > > > ÃÂ ÃÂ TCMove = True
> > > > ÃÂ End If
> > > > End Function
> > > >
> > > > ÃÂ
> > > > the SpindleHome function just sets an output bit.ÃÂ I don't understand how you expect this to home the spindle.ÃÂ What type of spindle do you have?
> > > > ÃÂ
> > > > Regards
> > > > TK
> > > > ÃÂ
> > > > ÃÂ
> > > > ÃÂ
> > > > ÃÂ
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃÂ
> > > > Hi Tom,
> > > >
> > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > >
> > > > while(IsMoving())
> > > > Sleep(100)
> > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > while (IsMoving())
> > > >
> > > > Should be this:
> > > >
> > > > Code "G00 Z-35"
> > > > While IsMoving()
> > > > Wend
> > > >
> > > > You don't need the Sleep() in the While IsMoving().
> > > >
> > > > Mods are proposed by ger21 on machsupport forum.
> > > >
> > > > I tried that, and your file without success.
> > > > I also tried a mix with(out) parenthesis :
> > > >
> > > > IsMoving()<>(IsMoving())
> > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > >
> > > > Anyway I keep trying to find what's wrong.
> > > >
> > > > Jerome
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I know this is Mach3 related.
> > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > I started a topic on the VB section of machsupport.
> > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > >
> > > > > The flowchart is included in my files: ATC procedure.png
> > > > >
> > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > >
> > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > I haven't checked your work yet.
> > > > >
> > > > > Regards,
> > > > >
> > > > > J.
> > > > >
> > > > >
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃâÃÂ
> > > > > > These are Mach3 and Mach3 VB questions.ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > ÃâÃÂ
> > > > > > It will be up to you to understand itÃâàand debug it.ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > ÃâÃÂ
> > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > ÃâÃÂ
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃâÃÂ
> > > > > > Hi Tom, Ray,
> > > > > >
> > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > >
> > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > >
> > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > >
> > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > >
> > > > > > So if you can explain me what's wrong I could go further.
> > > > > >
> > > > > > Thanks for your attention,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4818 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
J.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> I can't understand what you are saying, but to wait for an input I think you would do something like
> Â
> while (not IsActive(INPUT5))
> Â Sleep(100)
> wend
> Â
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 3:19 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
> Â
> Hi Tom,
>
> Outputs and inputs enabled.
>
> I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> sequence. The idea is to have an output condition, or a temp.
> INPUT5 is the limit switch indicating that the drawbar has released the tool.
> I will test both and see.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > ÃÂ
> > activatesignal(OUTPUT1) should work.ÃÂ Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > ÃÂ
> > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > ÃÂ
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> > Sleep 1000
> > activatesignal(OUTPUT1)
> > Sleep 1000
> > deactivatesignal(OUTPUT1)
> >
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 2:34 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > ÃÂ
> > Hi Tom,
> >
> > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > So I call functions inside the Main Sub.
> > I also use MsgBox to check what's wrong.
> > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> >
> > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> >
> > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> >
> > I posted My code in the txt file ATC_J_Debug.
> >
> > Thanks for your attention,
> >
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I started debugging this evening, more to come tomorrow.
> > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > The air cylinder procedure was written to add a security check.
> > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > >
> > > Thanks for your help,
> > >
> > > Jerome
> > >
> > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > >
> > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > >
> > >
> > >
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃâÃÂ
> > > > Sorry I wasn't aware of the Flowchart.ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > ÃâÃÂ
> > > > I wouldn't expect you to be able to just run it and get success.ÃâàSomething that complex will need to be debugged step by step.
> > > > ÃâÃÂ
> > > > I don't think parenthesis makes any difference in those cases.
> > > > ÃâÃÂ
> > > > To debug you might change the:
> > > > ÃâÃÂ
> > > > NewTool = GetSelectedTool()
> > > > OldTool = GetCurrentTool()
> > > >
> > > > to
> > > > ÃâÃÂ
> > > > NewTool = 5
> > > > OldTool = 3
> > > > ÃâÃÂ
> > > > in order to force a known case and be able to run it right from the VB editor.ÃâàUse single step and verify each step does what you expect.
> > > > ÃâÃÂ
> > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > ÃâÃÂ
> > > > 'Air Cylinder Homing
> > > > sub AirCyHome()
> > > > ÃâàDeactivateSignal(OUTPUT8)
> > > > ÃâàWhile (IsActive(INPUT1))
> > > > ÃâàÃâàSleep(10)
> > > > ÃâàWend
> > > > end sub
> > > > ÃâÃÂ
> > > > ÃâÃÂ
> > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > ÃâÃÂ
> > > > ÃâÃÂ
> > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > Function ToolChangerPos() As Boolean
> > > > ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > ÃâàToolChangerPos = 0
> > > > ÃâàTCMove = False 'We are stopped
> > > > ÃâÃÂ
> > > > ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > ÃâàÃâàToolChangerPos = 1
> > > > ÃâàÃâàTCMove = False
> > > > ÃâàÃâàElse
> > > > ÃâàÃâàToolChangerPos = -1
> > > > ÃâàÃâàTCMove = True
> > > > ÃâàEnd If
> > > > End Function
> > > >
> > > > ÃâÃÂ
> > > > the SpindleHome function just sets an output bit.ÃâàI don't understand how you expect this to home the spindle.ÃâàWhat type of spindle do you have?
> > > > ÃâÃÂ
> > > > Regards
> > > > TK
> > > > ÃâÃÂ
> > > > ÃâÃÂ
> > > > ÃâÃÂ
> > > > ÃâÃÂ
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃâÃÂ
> > > > Hi Tom,
> > > >
> > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > >
> > > > while(IsMoving())
> > > > Sleep(100)
> > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > while (IsMoving())
> > > >
> > > > Should be this:
> > > >
> > > > Code "G00 Z-35"
> > > > While IsMoving()
> > > > Wend
> > > >
> > > > You don't need the Sleep() in the While IsMoving().
> > > >
> > > > Mods are proposed by ger21 on machsupport forum.
> > > >
> > > > I tried that, and your file without success.
> > > > I also tried a mix with(out) parenthesis :
> > > >
> > > > IsMoving()<>(IsMoving())
> > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > >
> > > > Anyway I keep trying to find what's wrong.
> > > >
> > > > Jerome
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I know this is Mach3 related.
> > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > I started a topic on the VB section of machsupport.
> > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > >
> > > > > The flowchart is included in my files: ATC procedure.png
> > > > >
> > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > >
> > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > I haven't checked your work yet.
> > > > >
> > > > > Regards,
> > > > >
> > > > > J.
> > > > >
> > > > >
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > It will be up to you to understand itÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Hi Tom, Ray,
> > > > > >
> > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > >
> > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > >
> > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > >
> > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > >
> > > > > > So if you can explain me what's wrong I could go further.
> > > > > >
> > > > > > Thanks for your attention,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4819 |
From: Tom Kerekes |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
Very unlikely there is a problem with the VB Interpreter :}
Did you realize that you can single step through your code?
Regards
TK
Group: DynoMotion |
Message: 4820 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I realize that but I use the included interpreter in Mach3 which is...
I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
What is the debugger you use for VB macros?
J.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> Very unlikely there is a problem with the VB Interpreter :}
> Â
> Did you realize that you can single step through your code?
> Â
> Regards
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 3:56 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
> Â
> Hi Tom,
>
> Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > ÃÂ
> > I can't understand what you are saying, but to wait for an inputÃÂ I think you would do something like
> > ÃÂ
> > while (not IsActive(INPUT5))
> > ÃÂ Sleep(100)
> > wend
> > ÃÂ
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 3:19 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > ÃÂ
> > Hi Tom,
> >
> > Outputs and inputs enabled.
> >
> > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > sequence. The idea is to have an output condition, or a temp.
> > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > I will test both and see.
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > ÃâÃÂ
> > > activatesignal(OUTPUT1) should work.ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > ÃâÃÂ
> > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > ÃâÃÂ
> > > activatesignal(OUTPUT1)
> > > Sleep 1000
> > > deactivatesignal(OUTPUT1)
> > > Sleep 1000
> > > activatesignal(OUTPUT1)
> > > Sleep 1000
> > > deactivatesignal(OUTPUT1)
> > >
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 2:34 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > ÃâÃÂ
> > > Hi Tom,
> > >
> > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > So I call functions inside the Main Sub.
> > > I also use MsgBox to check what's wrong.
> > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > >
> > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > >
> > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > >
> > > I posted My code in the txt file ATC_J_Debug.
> > >
> > > Thanks for your attention,
> > >
> > > Jerome
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I started debugging this evening, more to come tomorrow.
> > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > The air cylinder procedure was written to add a security check.
> > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > >
> > > > Thanks for your help,
> > > >
> > > > Jerome
> > > >
> > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > >
> > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > >
> > > >
> > > >
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > I don't think parenthesis makes any difference in those cases.
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > To debug you might change the:
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > NewTool = GetSelectedTool()
> > > > > OldTool = GetCurrentTool()
> > > > >
> > > > > to
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > NewTool = 5
> > > > > OldTool = 3
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > 'Air Cylinder Homing
> > > > > sub AirCyHome()
> > > > > ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > ÃÆ'ââ¬Å¡ÃâàWend
> > > > > end sub
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > Function ToolChangerPos() As Boolean
> > > > > ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàElse
> > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > End Function
> > > > >
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > the SpindleHome function just sets an output bit.ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > Regards
> > > > > TK
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > Hi Tom,
> > > > >
> > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > >
> > > > > while(IsMoving())
> > > > > Sleep(100)
> > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > while (IsMoving())
> > > > >
> > > > > Should be this:
> > > > >
> > > > > Code "G00 Z-35"
> > > > > While IsMoving()
> > > > > Wend
> > > > >
> > > > > You don't need the Sleep() in the While IsMoving().
> > > > >
> > > > > Mods are proposed by ger21 on machsupport forum.
> > > > >
> > > > > I tried that, and your file without success.
> > > > > I also tried a mix with(out) parenthesis :
> > > > >
> > > > > IsMoving()<>(IsMoving())
> > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > >
> > > > > Anyway I keep trying to find what's wrong.
> > > > >
> > > > > Jerome
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I know this is Mach3 related.
> > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > I started a topic on the VB section of machsupport.
> > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > >
> > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > >
> > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > >
> > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > I haven't checked your work yet.
> > > > > >
> > > > > > Regards,
> > > > > >
> > > > > > J.
> > > > > >
> > > > > >
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > It will be up to you to understand itÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Hi Tom, Ray,
> > > > > > >
> > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > >
> > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > >
> > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > >
> > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > >
> > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > >
> > > > > > > Thanks for your attention,
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4821 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Re,
Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
J.
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I realize that but I use the included interpreter in Mach3 which is...
> I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
>
> What is the debugger you use for VB macros?
>
> J.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > Â
> > Very unlikely there is a problem with the VB Interpreter :}
> > Â
> > Did you realize that you can single step through your code?
> > Â
> > Regards
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 3:56 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > Â
> > Hi Tom,
> >
> > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > ÃÂ
> > > I can't understand what you are saying, but to wait for an inputÃÂ I think you would do something like
> > > ÃÂ
> > > while (not IsActive(INPUT5))
> > > ÃÂ Sleep(100)
> > > wend
> > > ÃÂ
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 3:19 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > ÃÂ
> > > Hi Tom,
> > >
> > > Outputs and inputs enabled.
> > >
> > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > sequence. The idea is to have an output condition, or a temp.
> > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > I will test both and see.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃâÃÂ
> > > > activatesignal(OUTPUT1) should work.ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > ÃâÃÂ
> > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > ÃâÃÂ
> > > > activatesignal(OUTPUT1)
> > > > Sleep 1000
> > > > deactivatesignal(OUTPUT1)
> > > > Sleep 1000
> > > > activatesignal(OUTPUT1)
> > > > Sleep 1000
> > > > deactivatesignal(OUTPUT1)
> > > >
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃâÃÂ
> > > > Hi Tom,
> > > >
> > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > So I call functions inside the Main Sub.
> > > > I also use MsgBox to check what's wrong.
> > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > >
> > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > >
> > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > >
> > > > I posted My code in the txt file ATC_J_Debug.
> > > >
> > > > Thanks for your attention,
> > > >
> > > > Jerome
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I started debugging this evening, more to come tomorrow.
> > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > The air cylinder procedure was written to add a security check.
> > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > >
> > > > > Thanks for your help,
> > > > >
> > > > > Jerome
> > > > >
> > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > >
> > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > To debug you might change the:
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > NewTool = GetSelectedTool()
> > > > > > OldTool = GetCurrentTool()
> > > > > >
> > > > > > to
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > NewTool = 5
> > > > > > OldTool = 3
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > 'Air Cylinder Homing
> > > > > > sub AirCyHome()
> > > > > > ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > > ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > > ÃÆ'ââ¬Å¡ÃâàWend
> > > > > > end sub
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > Function ToolChangerPos() As Boolean
> > > > > > ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > > ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàElse
> > > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > > ÃÆ'ââ¬Å¡ÃâàÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > > ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > > End Function
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > the SpindleHome function just sets an output bit.ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Regards
> > > > > > TK
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Hi Tom,
> > > > > >
> > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > >
> > > > > > while(IsMoving())
> > > > > > Sleep(100)
> > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > while (IsMoving())
> > > > > >
> > > > > > Should be this:
> > > > > >
> > > > > > Code "G00 Z-35"
> > > > > > While IsMoving()
> > > > > > Wend
> > > > > >
> > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > >
> > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > >
> > > > > > I tried that, and your file without success.
> > > > > > I also tried a mix with(out) parenthesis :
> > > > > >
> > > > > > IsMoving()<>(IsMoving())
> > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > >
> > > > > > Anyway I keep trying to find what's wrong.
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > >
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I know this is Mach3 related.
> > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > >
> > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > >
> > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > >
> > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > I haven't checked your work yet.
> > > > > > >
> > > > > > > Regards,
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > It will be up to you to understand itÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Hi Tom, Ray,
> > > > > > > >
> > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > >
> > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > >
> > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > >
> > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > >
> > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > >
> > > > > > > > Thanks for your attention,
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4822 |
From: Tom Kerekes |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
The included Mach3 interpreter allows you to single step as well as look at variables.
Operator | VB Script Editor
Regards
TK
Group: DynoMotion |
Message: 4823 |
From: Tom Kerekes |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
Look at the example I provided. I removed the sub main statement (no need for it). It makes the function or subroutine calls fine.
Regards
TK
Group: DynoMotion |
Message: 4824 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
Many thanks for your help.
I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
I always have the syntax error, but will try as you did, without
main statement.
I'll have a check on your file now.
Regards, J
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> Look at the example I provided. I removed the sub main statement (no need for it). It makes the function or subroutine calls fine.
> Â
> Regards
> TK
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 4:30 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
> Â
> Re,
>
> Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
>
> J.
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I realize that but I use the included interpreter in Mach3 which is...
> > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> >
> > What is the debugger you use for VB macros?
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > ÃÂ
> > > Very unlikely there is a problem with the VB Interpreter :}
> > > ÃÂ
> > > Did you realize that you can single step through your code?
> > > ÃÂ
> > > Regards
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 3:56 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > ÃÂ
> > > Hi Tom,
> > >
> > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃâÃÂ
> > > > I can't understand what you are saying, but to wait for an inputÃâàI think you would do something like
> > > > ÃâÃÂ
> > > > while (not IsActive(INPUT5))
> > > > ÃâàSleep(100)
> > > > wend
> > > > ÃâÃÂ
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃâÃÂ
> > > > Hi Tom,
> > > >
> > > > Outputs and inputs enabled.
> > > >
> > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > sequence. The idea is to have an output condition, or a temp.
> > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > I will test both and see.
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > activatesignal(OUTPUT1) should work.ÃÆ'ââ¬Å¡ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > activatesignal(OUTPUT1)
> > > > > Sleep 1000
> > > > > deactivatesignal(OUTPUT1)
> > > > > Sleep 1000
> > > > > activatesignal(OUTPUT1)
> > > > > Sleep 1000
> > > > > deactivatesignal(OUTPUT1)
> > > > >
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > Hi Tom,
> > > > >
> > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > So I call functions inside the Main Sub.
> > > > > I also use MsgBox to check what's wrong.
> > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > >
> > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > >
> > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > >
> > > > > I posted My code in the txt file ATC_J_Debug.
> > > > >
> > > > > Thanks for your attention,
> > > > >
> > > > > Jerome
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > The air cylinder procedure was written to add a security check.
> > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > >
> > > > > > Thanks for your help,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > >
> > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > To debug you might change the:
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > NewTool = GetSelectedTool()
> > > > > > > OldTool = GetCurrentTool()
> > > > > > >
> > > > > > > to
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > NewTool = 5
> > > > > > > OldTool = 3
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > 'Air Cylinder Homing
> > > > > > > sub AirCyHome()
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWend
> > > > > > > end sub
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElse
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > > > End Function
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Regards
> > > > > > > TK
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > >
> > > > > > > while(IsMoving())
> > > > > > > Sleep(100)
> > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > while (IsMoving())
> > > > > > >
> > > > > > > Should be this:
> > > > > > >
> > > > > > > Code "G00 Z-35"
> > > > > > > While IsMoving()
> > > > > > > Wend
> > > > > > >
> > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > >
> > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > >
> > > > > > > I tried that, and your file without success.
> > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > >
> > > > > > > IsMoving()<>(IsMoving())
> > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > >
> > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > >
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I know this is Mach3 related.
> > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > >
> > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > >
> > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > >
> > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > I haven't checked your work yet.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Hi Tom, Ray,
> > > > > > > > >
> > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > >
> > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > >
> > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > >
> > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > >
> > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > >
> > > > > > > > > Thanks for your attention,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4825 |
From: Fouijar |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I don't see the example you're talking about.
J.
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Many thanks for your help.
>
> I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> I always have the syntax error, but will try as you did, without
> main statement.
>
> I'll have a check on your file now.
>
> Regards, J
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > Â
> > Look at the example I provided. I removed the sub main statement (no need for it). It makes the function or subroutine calls fine.
> > Â
> > Regards
> > TK
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 4:30 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > Â
> > Re,
> >
> > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > I realize that but I use the included interpreter in Mach3 which is...
> > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > >
> > > What is the debugger you use for VB macros?
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃÂ
> > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > ÃÂ
> > > > Did you realize that you can single step through your code?
> > > > ÃÂ
> > > > Regards
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃÂ
> > > > Hi Tom,
> > > >
> > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃâÃÂ
> > > > > I can't understand what you are saying, but to wait for an inputÃâàI think you would do something like
> > > > > ÃâÃÂ
> > > > > while (not IsActive(INPUT5))
> > > > > ÃâàSleep(100)
> > > > > wend
> > > > > ÃâÃÂ
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃâÃÂ
> > > > > Hi Tom,
> > > > >
> > > > > Outputs and inputs enabled.
> > > > >
> > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > I will test both and see.
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > activatesignal(OUTPUT1) should work.ÃÆ'ââ¬Å¡ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > activatesignal(OUTPUT1)
> > > > > > Sleep 1000
> > > > > > deactivatesignal(OUTPUT1)
> > > > > > Sleep 1000
> > > > > > activatesignal(OUTPUT1)
> > > > > > Sleep 1000
> > > > > > deactivatesignal(OUTPUT1)
> > > > > >
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Hi Tom,
> > > > > >
> > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > So I call functions inside the Main Sub.
> > > > > > I also use MsgBox to check what's wrong.
> > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > >
> > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > >
> > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > >
> > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > >
> > > > > > Thanks for your attention,
> > > > > >
> > > > > > Jerome
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > >
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > >
> > > > > > > Thanks for your help,
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > >
> > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > To debug you might change the:
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > OldTool = GetCurrentTool()
> > > > > > > >
> > > > > > > > to
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > NewTool = 5
> > > > > > > > OldTool = 3
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > 'Air Cylinder Homing
> > > > > > > > sub AirCyHome()
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWend
> > > > > > > > end sub
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElse
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > > > > End Function
> > > > > > > >
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > >
> > > > > > > > while(IsMoving())
> > > > > > > > Sleep(100)
> > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > while (IsMoving())
> > > > > > > >
> > > > > > > > Should be this:
> > > > > > > >
> > > > > > > > Code "G00 Z-35"
> > > > > > > > While IsMoving()
> > > > > > > > Wend
> > > > > > > >
> > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > >
> > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > >
> > > > > > > > I tried that, and your file without success.
> > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > >
> > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > >
> > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I know this is Mach3 related.
> > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > >
> > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > >
> > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > >
> > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > I haven't checked your work yet.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > >
> > > > > > > > > J.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > >
> > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > >
> > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > >
> > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > >
> > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > >
> > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > >
> > > > > > > > > > Thanks for your attention,
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4827 |
From: Tom Kerekes |
Date: 5/7/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
Opps I think I uploaded the original file rather than the one with my syntax fixes.
I re-up-loaded it. See M6StartTK.m1s in your folder.
Regards
TK
Group: DynoMotion |
Message: 4831 |
From: Fouijar |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
Regards,
Jerome
PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Jerome,
> Â
> Opps I think I uploaded the original file rather than the one with my syntax fixes.
> Â
> I re-up-loaded it. See M6StartTK.m1s in your folder.
> Â
> Regards
> TK
> Â
> Â
>
> From: Fouijar <fouijar@...>
> To: DynoMotion@yahoogroups.com
> Sent: Monday, May 7, 2012 5:24 PM
> Subject: [DynoMotion] Re: ATC M6 macro under mach3
>
>
> Â
> Hi Tom,
>
> I don't see the example you're talking about.
>
> J.
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > Many thanks for your help.
> >
> > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > I always have the syntax error, but will try as you did, without
> > main statement.
> >
> > I'll have a check on your file now.
> >
> > Regards, J
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > ÃÂ
> > > Look at the example I provided.ÃÂ I removed the sub main statement (no need for it).ÃÂ It makes the function or subroutine calls fine.
> > > ÃÂ
> > > Regards
> > > TK
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 4:30 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > ÃÂ
> > > Re,
> > >
> > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > >
> > > > What is the debugger you use for VB macros?
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃâÃÂ
> > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > ÃâÃÂ
> > > > > Did you realize that you can single step through your code?
> > > > > ÃâÃÂ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃâÃÂ
> > > > > Hi Tom,
> > > > >
> > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'ââ¬Å¡ÃâàI think you would do something like
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > while (not IsActive(INPUT5))
> > > > > > ÃÆ'ââ¬Å¡ÃâàSleep(100)
> > > > > > wend
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > Hi Tom,
> > > > > >
> > > > > > Outputs and inputs enabled.
> > > > > >
> > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > I will test both and see.
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > activatesignal(OUTPUT1)
> > > > > > > Sleep 1000
> > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > Sleep 1000
> > > > > > > activatesignal(OUTPUT1)
> > > > > > > Sleep 1000
> > > > > > > deactivatesignal(OUTPUT1)
> > > > > > >
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > So I call functions inside the Main Sub.
> > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > >
> > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > >
> > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > >
> > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > >
> > > > > > > Thanks for your attention,
> > > > > > >
> > > > > > > Jerome
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > >
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > >
> > > > > > > > Thanks for your help,
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > >
> > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > To debug you might change the:
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > >
> > > > > > > > > to
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > NewTool = 5
> > > > > > > > > OldTool = 3
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > sub AirCyHome()
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWend
> > > > > > > > > end sub
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElse
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > > > > > End Function
> > > > > > > > >
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > >
> > > > > > > > > while(IsMoving())
> > > > > > > > > Sleep(100)
> > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > while (IsMoving())
> > > > > > > > >
> > > > > > > > > Should be this:
> > > > > > > > >
> > > > > > > > > Code "G00 Z-35"
> > > > > > > > > While IsMoving()
> > > > > > > > > Wend
> > > > > > > > >
> > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > >
> > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > >
> > > > > > > > > I tried that, and your file without success.
> > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > >
> > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > >
> > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > >
> > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > >
> > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > >
> > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > >
> > > > > > > > > > J.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > >
> > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > >
> > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > >
> > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > >
> > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > >
> > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > >
> > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4832 |
From: Fouijar |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
Forget about that, I did a false comparison with the old file... my bad.
Regards,
J
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
>
> Regards,
>
> Jerome
>
> PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Jerome,
> > Â
> > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > Â
> > I re-up-loaded it. See M6StartTK.m1s in your folder.
> > Â
> > Regards
> > TK
> > Â
> > Â
> >
> > From: Fouijar <fouijar@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Monday, May 7, 2012 5:24 PM
> > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> >
> >
> > Â
> > Hi Tom,
> >
> > I don't see the example you're talking about.
> >
> > J.
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > Many thanks for your help.
> > >
> > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > I always have the syntax error, but will try as you did, without
> > > main statement.
> > >
> > > I'll have a check on your file now.
> > >
> > > Regards, J
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Jerome,
> > > > ÃÂ
> > > > Look at the example I provided.ÃÂ I removed the sub main statement (no need for it).ÃÂ It makes the function or subroutine calls fine.
> > > > ÃÂ
> > > > Regards
> > > > TK
> > > >
> > > > From: Fouijar <fouijar@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > >
> > > >
> > > > ÃÂ
> > > > Re,
> > > >
> > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > >
> > > > J.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > >
> > > > > What is the debugger you use for VB macros?
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > ÃâÃÂ
> > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > ÃâÃÂ
> > > > > > Did you realize that you can single step through your code?
> > > > > > ÃâÃÂ
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > ÃâÃÂ
> > > > > > Hi Tom,
> > > > > >
> > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'ââ¬Å¡ÃâàI think you would do something like
> > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > while (not IsActive(INPUT5))
> > > > > > > ÃÆ'ââ¬Å¡ÃâàSleep(100)
> > > > > > > wend
> > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Outputs and inputs enabled.
> > > > > > >
> > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > I will test both and see.
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > Sleep 1000
> > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > Sleep 1000
> > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > Sleep 1000
> > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > >
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > >
> > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > >
> > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > >
> > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > >
> > > > > > > > Thanks for your attention,
> > > > > > > >
> > > > > > > > Jerome
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > >
> > > > > > > > > Thanks for your help,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > >
> > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > To debug you might change the:
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > >
> > > > > > > > > > to
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > NewTool = 5
> > > > > > > > > > OldTool = 3
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > sub AirCyHome()
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWend
> > > > > > > > > > end sub
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElse
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > > > > > > End Function
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > >
> > > > > > > > > > while(IsMoving())
> > > > > > > > > > Sleep(100)
> > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > while (IsMoving())
> > > > > > > > > >
> > > > > > > > > > Should be this:
> > > > > > > > > >
> > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > While IsMoving()
> > > > > > > > > > Wend
> > > > > > > > > >
> > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > >
> > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > >
> > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > >
> > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > >
> > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > >
> > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > >
> > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > >
> > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > >
> > > > > > > > > > > J.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > Regards
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > >
> > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > >
> > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > >
> > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > >
> > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > >
> > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > >
> > > > > > > > > > > > Jerome
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4834 |
From: Fouijar |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.
I think something is wrong between Mach and plugin. Do you have an idea?
Regards,
Jerome
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Forget about that, I did a false comparison with the old file... my bad.
>
> Regards,
>
> J
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> >
> > Regards,
> >
> > Jerome
> >
> > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > Â
> > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > > Â
> > > I re-up-loaded it. See M6StartTK.m1s in your folder.
> > > Â
> > > Regards
> > > TK
> > > Â
> > > Â
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 5:24 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > Â
> > > Hi Tom,
> > >
> > > I don't see the example you're talking about.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > Many thanks for your help.
> > > >
> > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > I always have the syntax error, but will try as you did, without
> > > > main statement.
> > > >
> > > > I'll have a check on your file now.
> > > >
> > > > Regards, J
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÃÂ
> > > > > Look at the example I provided.ÃÂ I removed the sub main statement (no need for it).ÃÂ It makes the function or subroutine calls fine.
> > > > > ÃÂ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÃÂ
> > > > > Re,
> > > > >
> > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > >
> > > > > > What is the debugger you use for VB macros?
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃâÃÂ
> > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > > ÃâÃÂ
> > > > > > > Did you realize that you can single step through your code?
> > > > > > > ÃâÃÂ
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃâÃÂ
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'ââ¬Å¡ÃâàI think you would do something like
> > > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > ÃÆ'ââ¬Å¡ÃâàSleep(100)
> > > > > > > > wend
> > > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > Outputs and inputs enabled.
> > > > > > > >
> > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > I will test both and see.
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDo you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > >
> > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > >
> > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > >
> > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > >
> > > > > > > > > Thanks for your attention,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > >
> > > > > > > > > > Thanks for your help,
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > >
> > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàYou might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSomething that complex will need to be debugged step by step.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > >
> > > > > > > > > > > to
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > NewTool = 5
> > > > > > > > > > > OldTool = 3
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàUse single step and verify each step does what you expect.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàDeactivateSignal(OUTPUT8)
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhile (IsActive(INPUT1))
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàSleep(10)
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWend
> > > > > > > > > > > end sub
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàIf IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 0
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False 'We are stopped
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = 1
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = False
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàElse
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàToolChangerPos = -1
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàTCMove = True
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàEnd If
> > > > > > > > > > > End Function
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI don't understand how you expect this to home the spindle.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàWhat type of spindle do you have?
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > >
> > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > Sleep(100)
> > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > while (IsMoving())
> > > > > > > > > > >
> > > > > > > > > > > Should be this:
> > > > > > > > > > >
> > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > While IsMoving()
> > > > > > > > > > > Wend
> > > > > > > > > > >
> > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > >
> > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > >
> > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > >
> > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > >
> > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > >
> > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > >
> > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > >
> > > > > > > > > > > > J.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâàand debug it.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâàI notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃÂ
> > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > >
> > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4835 |
From: TK |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Oh for io numbers > 127 you need to subtract 128 and specify port #2. TK
On May 8, 2012, at 8:28 AM, "Fouijar" <fouijar@...> wrote:
Hi Tom,
Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.
I think something is wrong between Mach and plugin. Do you have an idea?
Regards,
Jerome
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> Forget about that, I did a false comparison with the old file... my bad.
>
> Regards,
>
> J
>
> --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> >
> > Hi Tom,
> >
> > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> >
> > Regards,
> >
> > Jerome
> >
> > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Jerome,
> > > Â
> > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > > Â
> > > I re-up-loaded it. See M6StartTK.m1s in your folder.
> > > Â
> > > Regards
> > > TK
> > > Â
> > > Â
> > >
> > > From: Fouijar <fouijar@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Monday, May 7, 2012 5:24 PM
> > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > >
> > >
> > > Â
> > > Hi Tom,
> > >
> > > I don't see the example you're talking about.
> > >
> > > J.
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > Many thanks for your help.
> > > >
> > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > I always have the syntax error, but will try as you did, without
> > > > main statement.
> > > >
> > > > I'll have a check on your file now.
> > > >
> > > > Regards, J
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > ÂÂ
> > > > > Look at the example I provided. I removed the sub main statement (no need for it). It makes the function or subroutine calls fine.
> > > > > ÂÂ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > ÂÂ
> > > > > Re,
> > > > >
> > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > >
> > > > > > What is the debugger you use for VB macros?
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÂÂÂ
> > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > > ÂÂÂ
> > > > > > > Did you realize that you can single step through your code?
> > > > > > > ÂÂÂ
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÂÂÂ
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃÆ'‚ÂÂÂ
> > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'‚ I think you would do something like
> > > > > > > > ÃÆ'‚ÂÂÂ
> > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > ÃÆ'‚ Sleep(100)
> > > > > > > > wend
> > > > > > > > ÃÆ'‚ÂÂÂ
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'‚ÂÂÂ
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > Outputs and inputs enabled.
> > > > > > > >
> > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > I will test both and see.
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Æ'‚ÃÆ'‚ Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > Sleep 1000
> > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > >
> > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > >
> > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > >
> > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > >
> > > > > > > > > Thanks for your attention,
> > > > > > > > >
> > > > > > > > > Jerome
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > >
> > > > > > > > > > Thanks for your help,
> > > > > > > > > >
> > > > > > > > > > Jerome
> > > > > > > > > >
> > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > >
> > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Something that complex will need to be debugged step by step.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > >
> > > > > > > > > > > to
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > NewTool = 5
> > > > > > > > > > > OldTool = 3
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Use single step and verify each step does what you expect.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ DeactivateSignal(OUTPUT8)
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ While (IsActive(INPUT1))
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Sleep(10)
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Wend
> > > > > > > > > > > end sub
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 0
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False 'We are stopped
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = 1
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = False
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ Else
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ToolChangerPos = -1
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ TCMove = True
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ End If
> > > > > > > > > > > End Function
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I don't understand how you expect this to home the spindle.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ What type of spindle do you have?
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > >
> > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > Sleep(100)
> > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > while (IsMoving())
> > > > > > > > > > >
> > > > > > > > > > > Should be this:
> > > > > > > > > > >
> > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > While IsMoving()
> > > > > > > > > > > Wend
> > > > > > > > > > >
> > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > >
> > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > >
> > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > >
> > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > >
> > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > >
> > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > >
> > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > >
> > > > > > > > > > > > J.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > > > It will be up to you to understand itÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ and debug it.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚ÂÂÂ
> > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > >
> > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4836 |
From: Fouijar |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
I will check that in 1 hour, I had written a message with this port config but I was on port1...
thx
J
--- In DynoMotion@yahoogroups.com, TK <tk@...> wrote:
>
> Oh for io numbers > 127 you need to subtract 128 and specify port #2.
>
> TK
>
> On May 8, 2012, at 8:28 AM, "Fouijar" <fouijar@...> wrote:
>
> > Hi Tom,
> >
> > Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
> > I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.
> >
> > I think something is wrong between Mach and plugin. Do you have an idea?
> >
> > Regards,
> > Jerome
> >
> > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > >
> > > Hi Tom,
> > >
> > > Forget about that, I did a false comparison with the old file... my bad.
> > >
> > > Regards,
> > >
> > > J
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> > > >
> > > > Regards,
> > > >
> > > > Jerome
> > > >
> > > > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Jerome,
> > > > > Ã
> > > > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > > > > Ã
> > > > > I re-up-loaded it.Ã See M6StartTK.m1s in your folder.
> > > > > Ã
> > > > > Regards
> > > > > TK
> > > > > Ã
> > > > > Ã
> > > > >
> > > > > From: Fouijar <fouijar@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Monday, May 7, 2012 5:24 PM
> > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > >
> > > > >
> > > > > Ã
> > > > > Hi Tom,
> > > > >
> > > > > I don't see the example you're talking about.
> > > > >
> > > > > J.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > >
> > > > > > Hi Tom,
> > > > > >
> > > > > > Many thanks for your help.
> > > > > >
> > > > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > > > I always have the syntax error, but will try as you did, without
> > > > > > main statement.
> > > > > >
> > > > > > I'll have a check on your file now.
> > > > > >
> > > > > > Regards, J
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Jerome,
> > > > > > > ÃâÃ
> > > > > > > Look at the example I provided.Ãâà I removed the sub main statement (no need for it).Ãâà It makes the function or subroutine calls fine.
> > > > > > > ÃâÃ
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: Fouijar <fouijar@>
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > >
> > > > > > >
> > > > > > > ÃâÃ
> > > > > > > Re,
> > > > > > >
> > > > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > > > >
> > > > > > > J.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > >
> > > > > > > > Hi Tom,
> > > > > > > >
> > > > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > > > >
> > > > > > > > What is the debugger you use for VB macros?
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Jerome,
> > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > Did you realize that you can single step through your code?
> > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > > > >
> > > > > > > > > J.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I think you would do something like
> > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Sleep(100)
> > > > > > > > > > wend
> > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > Outputs and inputs enabled.
> > > > > > > > > >
> > > > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > > > I will test both and see.
> > > > > > > > > >
> > > > > > > > > > J.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > Sleep 1000
> > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > > Sleep 1000
> > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > Sleep 1000
> > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > >
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > > > >
> > > > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > > > >
> > > > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > > > >
> > > > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > > > >
> > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > >
> > > > > > > > > > > Jerome
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your help,
> > > > > > > > > > > >
> > > > > > > > > > > > Jerome
> > > > > > > > > > > >
> > > > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > > > >
> > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Something that complex will need to be debugged step by step.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > > > >
> > > > > > > > > > > > > to
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > NewTool = 5
> > > > > > > > > > > > > OldTool = 3
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Use single step and verify each step does what you expect.
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà DeactivateSignal(OUTPUT8)
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà While (IsActive(INPUT1))
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Sleep(10)
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Wend
> > > > > > > > > > > > > end sub
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ToolChangerPos = 0
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà TCMove = False 'We are stopped
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ToolChangerPos = 1
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà TCMove = False
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Else
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ToolChangerPos = -1
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà TCMove = True
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà End If
> > > > > > > > > > > > > End Function
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I don't understand how you expect this to home the spindle.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà What type of spindle do you have?
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > > > >
> > > > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > > > Sleep(100)
> > > > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > > > while (IsMoving())
> > > > > > > > > > > > >
> > > > > > > > > > > > > Should be this:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > > > While IsMoving()
> > > > > > > > > > > > > Wend
> > > > > > > > > > > > >
> > > > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > > > >
> > > > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > > > >
> > > > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > > > >
> > > > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > J.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà and debug it.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Jerome
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> >
>
|
|
Group: DynoMotion |
Message: 4862 |
From: Fouijar |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Tom,
First of all, thank you.
Now the situation has drastically changed, everything works, I only have to adjust and tune my sequences to match expected results.
I started to write better code and adjustments.
Thanks for you patience, attention and quality support.
Regards,
Jerome
--- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@...> wrote:
>
> Hi Tom,
>
> I will check that in 1 hour, I had written a message with this port config but I was on port1...
> thx
>
> J
>
> --- In DynoMotion@yahoogroups.com, TK <tk@> wrote:
> >
> > Oh for io numbers > 127 you need to subtract 128 and specify port #2.
> >
> > TK
> >
> > On May 8, 2012, at 8:28 AM, "Fouijar" <fouijar@> wrote:
> >
> > > Hi Tom,
> > >
> > > Well, I use your file and the (de)activatesignal(OUTPUT#) function works for the leds on the Kflop board but not for outputting on Kanalog. If I command directly by Kmotion, it works perfectly.
> > > I checked the read state of mach3 inputs, it's also working fine as it is in Kmotion.
> > >
> > > I think something is wrong between Mach and plugin. Do you have an idea?
> > >
> > > Regards,
> > > Jerome
> > >
> > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > >
> > > > Hi Tom,
> > > >
> > > > Forget about that, I did a false comparison with the old file... my bad.
> > > >
> > > > Regards,
> > > >
> > > > J
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > >
> > > > > Hi Tom,
> > > > >
> > > > > I did the comparison between the file you sent me back and the file I initially uploaded, they are basically the same. Are you sure it's the good file you sent me yesterday?
> > > > >
> > > > > Regards,
> > > > >
> > > > > Jerome
> > > > >
> > > > > PS: On a Win7 system it doesn't show any errors. I read a thread about that on machsupport forum and somebody said it's because Win7 is more fault tolerant...
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Jerome,
> > > > > > Ã
> > > > > > Opps I think I uploaded the original file rather than the one with my syntax fixes.
> > > > > > Ã
> > > > > > I re-up-loaded it.Ã See M6StartTK.m1s in your folder.
> > > > > > Ã
> > > > > > Regards
> > > > > > TK
> > > > > > Ã
> > > > > > Ã
> > > > > >
> > > > > > From: Fouijar <fouijar@>
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Sent: Monday, May 7, 2012 5:24 PM
> > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > >
> > > > > >
> > > > > > Ã
> > > > > > Hi Tom,
> > > > > >
> > > > > > I don't see the example you're talking about.
> > > > > >
> > > > > > J.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > >
> > > > > > > Hi Tom,
> > > > > > >
> > > > > > > Many thanks for your help.
> > > > > > >
> > > > > > > I uploaded the "partial" sequence since I still have to do some operations to reload the new tool etc.
> > > > > > > I always have the syntax error, but will try as you did, without
> > > > > > > main statement.
> > > > > > >
> > > > > > > I'll have a check on your file now.
> > > > > > >
> > > > > > > Regards, J
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Jerome,
> > > > > > > > ÃâÃ
> > > > > > > > Look at the example I provided.Ãâà I removed the sub main statement (no need for it).Ãâà It makes the function or subroutine calls fine.
> > > > > > > > ÃâÃ
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Sent: Monday, May 7, 2012 4:30 PM
> > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃâÃ
> > > > > > > > Re,
> > > > > > > >
> > > > > > > > Something very annoying is the syntax error mentioned by the debugger when I Try to make a call in the Main sub. I read the VB macro programming reference book for mach3, there's a lot of such examples but none working for me, this is again ...
> > > > > > > > Ok ctrl+c ; ctrl+v isn't so complicated but why a function doesn't work!
> > > > > > > >
> > > > > > > > J.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Tom,
> > > > > > > > >
> > > > > > > > > I realize that but I use the included interpreter in Mach3 which is...
> > > > > > > > > I did VB programming by the past, but more C# programming and I'm not very comfortable with programming since I haven't really had to do.
> > > > > > > > >
> > > > > > > > > What is the debugger you use for VB macros?
> > > > > > > > >
> > > > > > > > > J.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Jerome,
> > > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > Very unlikely there is a problem with the VB Interpreter :}
> > > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > Did you realize that you can single step through your code?
> > > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > Sent: Monday, May 7, 2012 3:56 PM
> > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > Hi Tom,
> > > > > > > > > >
> > > > > > > > > > Yes this the idea, but my actual problem is more about calling sequence not followed as it should.
> > > > > > > > > >
> > > > > > > > > > J.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > I can't understand what you are saying, but to wait for an inputÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I think you would do something like
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > while (not IsActive(INPUT5))
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Sleep(100)
> > > > > > > > > > > wend
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > Sent: Monday, May 7, 2012 3:19 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > Hi Tom,
> > > > > > > > > > >
> > > > > > > > > > > Outputs and inputs enabled.
> > > > > > > > > > >
> > > > > > > > > > > I was checking the bit numbers for inputs and outputs. I had the idea to use the WaitSystemFor(INPUT5), or a while(INPUT5=0)sleep(100)Wend
> > > > > > > > > > > sequence. The idea is to have an output condition, or a temp.
> > > > > > > > > > > INPUT5 is the limit switch indicating that the drawbar has released the tool.
> > > > > > > > > > > I will test both and see.
> > > > > > > > > > >
> > > > > > > > > > > J.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > activatesignal(OUTPUT1) should work.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Do you have Output1 configured in Ports&Pins Ouputs and enabled?
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > Here is some Mach3 VB code that will blink a KFLOP LED if Mach3 Output1 is configured as Port1 Pin46
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > > Sleep 1000
> > > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > > > Sleep 1000
> > > > > > > > > > > > activatesignal(OUTPUT1)
> > > > > > > > > > > > Sleep 1000
> > > > > > > > > > > > deactivatesignal(OUTPUT1)
> > > > > > > > > > > >
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > Sent: Monday, May 7, 2012 2:34 PM
> > > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I solved some issues I had in My M6 macro, I Use functions rather than Subs. I think that's not working to use a sub in main sub.
> > > > > > > > > > > > So I call functions inside the Main Sub.
> > > > > > > > > > > > I also use MsgBox to check what's wrong.
> > > > > > > > > > > > The file isn't faulty but doesn't work as it should. When I run the script the function, i.e., activatesignal(OUTPUT1) doesn't work. Maybe, I think, I have to use the NotifyPlugins() or this should be handled directly by the dynomotion plugin?
> > > > > > > > > > > >
> > > > > > > > > > > > The only visible action is the executed code()function, the Z axis moves as commanded. This is a good step in the right direction.
> > > > > > > > > > > >
> > > > > > > > > > > > If I have to use the NotifyPlugins() Then a previous thread I wrote about the best choice between C#, Vb or brains should probably be resumed to the C# choice, since the M6 could be executed in the Notify.c without handling communication issues. This is only IF.
> > > > > > > > > > > >
> > > > > > > > > > > > I posted My code in the txt file ATC_J_Debug.
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > >
> > > > > > > > > > > > Jerome
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I started debugging this evening, more to come tomorrow.
> > > > > > > > > > > > > I suppressed the compare function and made a test to know if the program has to run or leave.
> > > > > > > > > > > > > The air cylinder procedure was written to add a security check.
> > > > > > > > > > > > > The spindle is an AC asynchronous servo, the drive has a function I programmed and tuned to react at a particular entry and align the spindle with the tool holder (bt30).
> > > > > > > > > > > > >
> > > > > > > > > > > > > Thanks for your help,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Jerome
> > > > > > > > > > > > >
> > > > > > > > > > > > > PS: I also write on the machsupport forum, this will give more visibility and resources.
> > > > > > > > > > > > >
> > > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.msg149510.html#msg149510
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > Sorry I wasn't aware of the Flowchart.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà You might point that out on the Mach3 foum as well so they will know what you are trying to do.
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > I wouldn't expect you to be able to just run it and get success.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Something that complex will need to be debugged step by step.
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > I don't think parenthesis makes any difference in those cases.
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > To debug you might change the:
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > NewTool = GetSelectedTool()
> > > > > > > > > > > > > > OldTool = GetCurrentTool()
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > to
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > NewTool = 5
> > > > > > > > > > > > > > OldTool = 3
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > in order to force a known case and be able to run it right from the VB editor.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Use single step and verify each step does what you expect.
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > I think you should change the initial Compare to (because it wasn't waiting for anything):
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > 'Air Cylinder Homing
> > > > > > > > > > > > > > sub AirCyHome()
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà DeactivateSignal(OUTPUT8)
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà While (IsActive(INPUT1))
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Sleep(10)
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Wend
> > > > > > > > > > > > > > end sub
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > Regarding the ToolChangerPos this does a bunch of testing but doesn't do anything
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > 'Carrousel air cylinder position check : Home, in Mvt and ToolChange
> > > > > > > > > > > > > > Function ToolChangerPos() As Boolean
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà If IsActive(INPUT1)>IsActive(INPUT2)Then 'We are at Home Position
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ToolChangerPos = 0
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà TCMove = False 'We are stopped
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ElseIf IsActive(INPUT1)<IsActive(INPUT2) Then
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ToolChangerPos = 1
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà TCMove = False
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà Else
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ToolChangerPos = -1
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà TCMove = True
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà End If
> > > > > > > > > > > > > > End Function
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > the SpindleHome function just sets an output bit.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I don't understand how you expect this to home the spindle.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà What type of spindle do you have?
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > > Sent: Sunday, May 6, 2012 1:38 PM
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: ATC M6 macro under mach3
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I checked and compared files, I also made changes as proposed by mach users. The files mods proposed are:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > while(IsMoving())
> > > > > > > > > > > > > > Sleep(100)
> > > > > > > > > > > > > > code("G00 Z-35")'Move to the safe Z position for tool change
> > > > > > > > > > > > > > while (IsMoving())
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Should be this:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Code "G00 Z-35"
> > > > > > > > > > > > > > While IsMoving()
> > > > > > > > > > > > > > Wend
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You don't need the Sleep() in the While IsMoving().
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Mods are proposed by ger21 on machsupport forum.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I tried that, and your file without success.
> > > > > > > > > > > > > > I also tried a mix with(out) parenthesis :
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > IsMoving()<>(IsMoving())
> > > > > > > > > > > > > > code("G00 Z-35")<>Code "G00 Z-35"
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Anyway I keep trying to find what's wrong.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Jerome
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "Fouijar" <fouijar@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I know this is Mach3 related.
> > > > > > > > > > > > > > > But I asked since there's a general interest for anybody who uses Mach3 and Kflop.
> > > > > > > > > > > > > > > I started a topic on the VB section of machsupport.
> > > > > > > > > > > > > > > http://www.machsupport.com/forum/index.php/topic,21505.0.html
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The flowchart is included in my files: ATC procedure.png
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The Compare function was created to check if the current tool is the same as the requested tool or new tool.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Thanks for you support, I think it will greatly help me and anyone involved with Kflop+Mach.
> > > > > > > > > > > > > > > I haven't checked your work yet.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > J.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Jerome,
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > > These are Mach3 and Mach3 VB questions.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I fixed general typos and syntax errors so it now compiles and uploaded the file.
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > > It will be up to you to understand itÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà and debug it.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâà I notice things like the first function call to Compare returns a result that is never used so I'm not sure what the point is.
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > > The first step might be for you to create a flowchart or description of how you expect your tool changer to operate.
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: Fouijar <fouijar@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > > > > > > > > > Sent: Sunday, May 6, 2012 9:09 AM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] ATC M6 macro under mach3
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > > > > > > > > > > > Hi Tom, Ray,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > In December Ray helped me to rewrite the macro I did for ATC in Mach3.
> > > > > > > > > > > > > > > > At the time I wasn't ready to test it without risks, now that I'm ready and made trials I have a M6 scripter compile error in mach3.
> > > > > > > > > > > > > > > > I uploaded the file to my folder so if you can have a look and tell me what's wrong with the code.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I checked on machsupport forum but the presented codes were not for carousel atc system and not really to compare with my setup.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I did some tests with the clamp and unclamp sub calls only, and I still have the same message.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I don't know if I have to use an oemdro for the Getcurrentool()?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > So if you can explain me what's wrong I could go further.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Thanks for your attention,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Jerome
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 4864 |
From: Tom Kerekes |
Date: 5/8/2012 |
Subject: Re: ATC M6 macro under mach3 |
Hi Jerome,
Thanks for your patience.
Regards
TK
| | | | | | | | | | | | | | | | | |